GoGuardian History + Screen Bypass

Windows opened with
var myWindow = window.open("", "_blank", "popup;width=300;height=300;menubar=false;noopener;noreferrer");
aren't (or used) to be invisible to GoGuardian because it lacks the permission to run on about:blank pages. Then you can just put an iframe inside the popup window and load websites.

var iframe = document.createElement("iframe");
iframe.src = "https://google.com/webhp?igu=1";
iframe.style = "position:fixed;border:0;top:0;left:0;width:100vw;height:100vh;";
myWindow.document.body.appendChild(iframe);

Credits:
https://github.com/ZXMushroom63 | ZXMushroom63
https://github.com/3kh0/ext-remover/discussions/1501
